home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / util / cli / SED.lha / SED / SED.readme < prev   
Text File  |  2000-12-09  |  6KB  |  161 lines

  1. Short:    Amiga stream editor
  2. Uploader: thor@math.tu-berlin.de (Thomas Richter)
  3. Author:   thor@math.tu-berlin.de (Thomas Richter)
  4. Type:     util/cli
  5. Version:  40.3
  6. Requires: AmigaOs 3.0 or better
  7. ______________________________________________________________________________
  8.  
  9. Purpose of this program:
  10.  
  11.     SED takes an input file, checks each line of this file against a
  12.     pattern supplied on the command line, and generates a new line from
  13.     this pattern match in the destination. This could either mean that
  14.     the matching line is removed completely from the output, replaced
  15.     by a different line, or changed according to the specifications of
  16.     SED.
  17.     
  18.     SED is an approximation of the Unix "stream editor" sed. It is not
  19.     quite as powerful as sed because its command set is currently very
  20.     limited, and it does not support command files. Its pattern syntax
  21.     is different, too. It still looks like "line noise" to me - I didn't
  22.     want to break with this tradition - but it's at least the Amiga kind
  23.     of line noise.
  24.  
  25.     Its pattern matching rules are a superset of the AmigaOs patterns,
  26.     with some additional features like "captured expressions" and more
  27.     powerful "character classes" and "escaping".
  28.  
  29.     SED is useful for automatic processing of text files, e.g. the modi-
  30.     fication of the startup-sequence. SED can also be run as a "filter"
  31.     in which case it reads its input from stdin and prints output to
  32.     stdout. Combine this feature with pipes and you get a very powerful
  33.     text processing tool.
  34.  
  35.     A warning: Pattern matching looks simple, but is full of hard to gasp
  36.     traps. This tool is therefore thought to be for "expert usage". In 
  37.     case you think SED doesn't process your pattern correctly, think
  38.     twice!
  39.  
  40.     For further details, please read the SED.doc.
  41. ______________________________________________________________________________
  42.  
  43. Release 40.3:
  44.  
  45.     VERBOSE prints now also file name and line number information
  46.     such that SED can be used as a "Search" (or "grep") replacement.
  47. ______________________________________________________________________________
  48.  
  49. Release 40.2:
  50.  
  51.     Due to an oversight, the character ranges [..-..] were broken.
  52.     Fixed.
  53.     Handling of (..|..) "or-operator" was broken. Fixed.
  54.     Escaping with \ could leave bogus patterns in the pattern stream
  55.     and could have caused non-justified "invalid template" errors.
  56.     Fixed.
  57.  
  58. ______________________________________________________________________________
  59.  
  60. Release 40.1:
  61.  
  62.     The former release used memory pools, but did not check correctly
  63.     whether the corresponding exec functions are available. Required
  64.     and requires Kickstart 3.0.
  65.     Could have forgotten to return "ERROR_NO_FREE_STORE" for some
  66.     out of memory error conditions.
  67.  
  68. ______________________________________________________________________________
  69.  
  70. Release 40.0:
  71.  
  72.     This is the first Aminet release. This is a 40.0 release because
  73.     pattern matching is a very complex buisiness and even though I tested
  74.     this release quite good, I wouldn't be astonished if some flaws still
  75.     remained. Pattern matching logic is astonishing sometimes, so please
  76.     check the documentation first before reporting any "obvious" bugs. The
  77.     obvious bugs should be gone already!
  78.  
  79. ______________________________________________________________________________
  80.  
  81.                          The THOR-Software Licence (v2, 24th June 1998)
  82.  
  83.  
  84. This License applies to the computer programs known as "SED". The "Program", 
  85. below, refers to such program. The "Archive" refers to the package of 
  86. distribution, as prepared by the author of the Program, Thomas Richter. 
  87. Each licensee is addressed as "you".
  88.  
  89.  
  90.  
  91. The Program and the data in the archive are freely distributable
  92. under the restrictions stated below, but are also Copyright (c)
  93. Thomas Richter.
  94.  
  95. Distribution of the Program, the Archive and the data in the Archive by a
  96. commercial organization without written permission from the author to any
  97. third party is prohibited if any payment is made in connection with such
  98. distribution, whether directly (as in payment for a copy of the Program) or
  99. indirectly (as in payment for some service related to the Program, or
  100. payment for some product or service that includes a copy of the Program
  101. "without charge"; these are only examples, and not an exhaustive enumeration
  102. of prohibited activities).
  103.  
  104.  
  105. However, the following methods of distribution
  106. involving payment shall not in and of themselves be a violation of this
  107. restriction:
  108.  
  109.  
  110. (i) Posting the Program on a public access information storage and
  111. retrieval service for which a fee is received for retrieving information
  112. (such as an on-line service), provided that the fee is not
  113. content-dependent (i.e., the fee would be the same for retrieving the same
  114. volume of information consisting of random data).
  115.  
  116.  
  117. (ii) Distributing the Program on a CD-ROM, provided that
  118.  
  119. a) the Archive is reproduced entirely and verbatim on such CD-ROM, including
  120. especially this licence agreement;
  121.  
  122. b) the CD-ROM is made available to the public for a nominal fee only,
  123.  
  124. c) a copy of the CD is made available to the author for free except for
  125. shipment costs, and
  126.  
  127. d) provided further that all information on such CD-ROM is redistributable
  128. for non-commercial purposes without charge.
  129.  
  130.  
  131. Redistribution of a modified version of the Archive, the Program or the
  132. contents of the Archive is prohibited in any way, by any organization,
  133. regardless whether commercial or non-commercial. Everything must be kept
  134. together, in original and unmodified form.
  135.  
  136.  
  137.  
  138.  
  139. Limitations.
  140.  
  141.  
  142. THE PROGRAM IS PROVIDED TO YOU "AS IS", WITHOUT WARRANTY. THERE IS NO
  143. WARRANTY FOR THE PROGRAM, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
  144. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  145. PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. THE ENTIRE
  146. RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD
  147. THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY
  148. SERVICING, REPAIR OR CORRECTION.
  149.  
  150.  
  151. IF YOU DO NOT ACCEPT THIS LICENCE, YOU MUST DELETE THE PROGRAM, THE ARCHIVE
  152. AND ALL DATA OF THIS ARCHIVE FROM YOUR STORAGE SYSTEM. YOU ACCEPT THIS
  153. LICENCE BY USING OR REDISTRIBUTING THE PROGRAM.
  154.  
  155.  
  156.                                                         Thomas Richter
  157. ______________________________________________________________________________
  158.  
  159. Thomas Richter,
  160.                 December 2000
  161.